home *** CD-ROM | disk | FTP | other *** search
/ Beginning Mac Programming / Beginning Mac Programming.bin / pc / Open Me for REALbasic 3 / REALbasic 3.2 / Goodies / 3rd Party Demos / 3rd Party Plugins / Misc / PEVocoder 1.0 (PPC) / PEVocodePlugin Source Code / riff.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-09-12  |  678 b   |  19 lines

  1. /******************************************************************************
  2.  * $Id: riff.h,v 1.2 1998/09/13 00:21:18 emanuel Exp $
  3.  * Copyright (C) 1996-1998 Emanuel Borsboom <emanuel@zerius.com>
  4.  * Permission is granted to make any use of this code subject to the condition
  5.  * that all copies contain this notice and an indication of what has been
  6.  * changed.
  7.  *****************************************************************************/
  8.  
  9. #ifndef RIFF_H_INCLUDED
  10. #define RIFF_H_INCLUDED
  11.  
  12. #include "wave.h"
  13.  
  14. WAVE_FILE *riff_open(FILE *fp, WAVE_INFO *info);
  15. WAVE_FILE *riff_create(FILE *fp, WAVE_INFO *info);
  16. void riff_close(WAVE_FILE *file);
  17.  
  18. #endif /* RIFF_H_INCLUDED */
  19.